93b35e270ae5272ffb2b0834888ae94fa826932f,src/main/java/com/textquo/twist/types/Find.java,Find,now,#,140
Before Change
if (sorts == null){
sorts = new HashMap<String, Query.SortDirection>();
}
final Iterator<Entity> eit = _store.querySortedLike(_ancestor, _kind, filters, sorts, max, skip, keysOnly);
it = new Iterator<V>() {
public void remove() {
eit.remove();
After Change
sorts = new HashMap<String, Query.SortDirection>();
}
final Iterator<Entity> eit
= (Iterator<Entity>) _store.querySortedLike(_ancestor, _kind, filters, sorts, max, skip, keysOnly, false);
it = new Iterator<V>() {
public void remove() {
eit.remove();